home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / gcc.info-19 (.txt) < prev    next >
GNU Info File  |  1995-06-16  |  50KB  |  920 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.55 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Published by the Free Software Foundation 59 Temple Place - Suite 330
  5. Boston, MA 02111-1307 USA
  6.    Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995 Free Software
  7. Foundation, Inc.
  8.    Permission is granted to make and distribute verbatim copies of this
  9. manual provided the copyright notice and this permission notice are
  10. preserved on all copies.
  11.    Permission is granted to copy and distribute modified versions of
  12. this manual under the conditions for verbatim copying, provided also
  13. that the sections entitled "GNU General Public License," "Funding for
  14. Free Software," and "Protect Your Freedom--Fight `Look And Feel'" are
  15. included exactly as in the original, and provided that the entire
  16. resulting derived work is distributed under the terms of a permission
  17. notice identical to this one.
  18.    Permission is granted to copy and distribute translations of this
  19. manual into another language, under the above conditions for modified
  20. versions, except that the sections entitled "GNU General Public
  21. License," "Funding for Free Software," and "Protect Your Freedom--Fight
  22. `Look And Feel'", and this permission notice, may be included in
  23. translations approved by the Free Software Foundation instead of in the
  24. original English.
  25. File: gcc.info,  Node: Driver,  Next: Run-time Target,  Up: Target Macros
  26. Controlling the Compilation Driver, `gcc'
  27. =========================================
  28.    You can control the compilation driver.
  29. `SWITCH_TAKES_ARG (CHAR)'
  30.      A C expression which determines whether the option `-CHAR' takes
  31.      arguments.  The value should be the number of arguments that
  32.      option takes-zero, for many options.
  33.      By default, this macro is defined to handle the standard options
  34.      properly.  You need not define it unless you wish to add additional
  35.      options which take arguments.
  36. `WORD_SWITCH_TAKES_ARG (NAME)'
  37.      A C expression which determines whether the option `-NAME' takes
  38.      arguments.  The value should be the number of arguments that
  39.      option takes-zero, for many options.  This macro rather than
  40.      `SWITCH_TAKES_ARG' is used for multi-character option names.
  41.      By default, this macro is defined as
  42.      `DEFAULT_WORD_SWITCH_TAKES_ARG', which handles the standard options
  43.      properly.  You need not define `WORD_SWITCH_TAKES_ARG' unless you
  44.      wish to add additional options which take arguments.  Any
  45.      redefinition should call `DEFAULT_WORD_SWITCH_TAKES_ARG' and then
  46.      check for additional options.
  47. `SWITCHES_NEED_SPACES'
  48.      A string-valued C expression which is nonempty if the linker needs
  49.      a space between the `-L' or `-o' option and its argument.
  50.      If this macro is not defined, the default value is 0.
  51. `CPP_SPEC'
  52.      A C string constant that tells the GNU CC driver program options to
  53.      pass to CPP.  It can also specify how to translate options you
  54.      give to GNU CC into options for GNU CC to pass to the CPP.
  55.      Do not define this macro if it does not need to do anything.
  56. `NO_BUILTIN_SIZE_TYPE'
  57.      If this macro is defined, the preprocessor will not define the
  58.      builtin macro `__SIZE_TYPE__'.  The macro `__SIZE_TYPE__' must
  59.      then be defined by `CPP_SPEC' instead.
  60.      This should be defined if `SIZE_TYPE' depends on target dependent
  61.      flags which are not accessible to the preprocessor.  Otherwise, it
  62.      should not be defined.
  63. `NO_BUILTIN_PTRDIFF_TYPE'
  64.      If this macro is defined, the preprocessor will not define the
  65.      builtin macro `__PTRDIFF_TYPE__'.  The macro `__PTRDIFF_TYPE__'
  66.      must then be defined by `CPP_SPEC' instead.
  67.      This should be defined if `PTRDIFF_TYPE' depends on target
  68.      dependent flags which are not accessible to the preprocessor.
  69.      Otherwise, it should not be defined.
  70. `SIGNED_CHAR_SPEC'
  71.      A C string constant that tells the GNU CC driver program options to
  72.      pass to CPP.  By default, this macro is defined to pass the option
  73.      `-D__CHAR_UNSIGNED__' to CPP if `char' will be treated as
  74.      `unsigned char' by `cc1'.
  75.      Do not define this macro unless you need to override the default
  76.      definition.
  77. `CC1_SPEC'
  78.      A C string constant that tells the GNU CC driver program options to
  79.      pass to `cc1'.  It can also specify how to translate options you
  80.      give to GNU CC into options for GNU CC to pass to the `cc1'.
  81.      Do not define this macro if it does not need to do anything.
  82. `CC1PLUS_SPEC'
  83.      A C string constant that tells the GNU CC driver program options to
  84.      pass to `cc1plus'.  It can also specify how to translate options
  85.      you give to GNU CC into options for GNU CC to pass to the
  86.      `cc1plus'.
  87.      Do not define this macro if it does not need to do anything.
  88. `ASM_SPEC'
  89.      A C string constant that tells the GNU CC driver program options to
  90.      pass to the assembler.  It can also specify how to translate
  91.      options you give to GNU CC into options for GNU CC to pass to the
  92.      assembler.  See the file `sun3.h' for an example of this.
  93.      Do not define this macro if it does not need to do anything.
  94. `ASM_FINAL_SPEC'
  95.      A C string constant that tells the GNU CC driver program how to
  96.      run any programs which cleanup after the normal assembler.
  97.      Normally, this is not needed.  See the file `mips.h' for an
  98.      example of this.
  99.      Do not define this macro if it does not need to do anything.
  100. `LINK_SPEC'
  101.      A C string constant that tells the GNU CC driver program options to
  102.      pass to the linker.  It can also specify how to translate options
  103.      you give to GNU CC into options for GNU CC to pass to the linker.
  104.      Do not define this macro if it does not need to do anything.
  105. `LIB_SPEC'
  106.      Another C string constant used much like `LINK_SPEC'.  The
  107.      difference between the two is that `LIB_SPEC' is used at the end
  108.      of the command given to the linker.
  109.      If this macro is not defined, a default is provided that loads the
  110.      standard C library from the usual place.  See `gcc.c'.
  111. `LIBGCC_SPEC'
  112.      Another C string constant that tells the GNU CC driver program how
  113.      and when to place a reference to `libgcc.a' into the linker
  114.      command line.  This constant is placed both before and after the
  115.      value of `LIB_SPEC'.
  116.      If this macro is not defined, the GNU CC driver provides a default
  117.      that passes the string `-lgcc' to the linker unless the `-shared'
  118.      option is specified.
  119. `STARTFILE_SPEC'
  120.      Another C string constant used much like `LINK_SPEC'.  The
  121.      difference between the two is that `STARTFILE_SPEC' is used at the
  122.      very beginning of the command given to the linker.
  123.      If this macro is not defined, a default is provided that loads the
  124.      standard C startup file from the usual place.  See `gcc.c'.
  125. `ENDFILE_SPEC'
  126.      Another C string constant used much like `LINK_SPEC'.  The
  127.      difference between the two is that `ENDFILE_SPEC' is used at the
  128.      very end of the command given to the linker.
  129.      Do not define this macro if it does not need to do anything.
  130. `LINK_LIBGCC_SPECIAL'
  131.      Define this macro meaning that `gcc' should find the library
  132.      `libgcc.a' by hand, rather than passing the argument `-lgcc' to
  133.      tell the linker to do the search; also, `gcc' should not generate
  134.      `-L' options to pass to the linker (as it normally does).
  135. `LINK_LIBGCC_SPECIAL_1'
  136.      Define this macro meaning that `gcc' should find the library
  137.      `libgcc.a' by hand, rather than passing the argument `-lgcc' to
  138.      tell the linker to do the search.
  139. `RELATIVE_PREFIX_NOT_LINKDIR'
  140.      Define this macro to tell `gcc' that it should only translate a
  141.      `-B' prefix into a `-L' linker option if the prefix indicates an
  142.      absolute file name.
  143. `STANDARD_EXEC_PREFIX'
  144.      Define this macro as a C string constant if you wish to override
  145.      the standard choice of `/usr/local/lib/gcc-lib/' as the default
  146.      prefix to try when searching for the executable files of the
  147.      compiler.
  148. `MD_EXEC_PREFIX'
  149.      If defined, this macro is an additional prefix to try after
  150.      `STANDARD_EXEC_PREFIX'.  `MD_EXEC_PREFIX' is not searched when the
  151.      `-b' option is used, or the compiler is built as a cross compiler.
  152. `STANDARD_STARTFILE_PREFIX'
  153.      Define this macro as a C string constant if you wish to override
  154.      the standard choice of `/usr/local/lib/' as the default prefix to
  155.      try when searching for startup files such as `crt0.o'.
  156. `MD_STARTFILE_PREFIX'
  157.      If defined, this macro supplies an additional prefix to try after
  158.      the standard prefixes.  `MD_EXEC_PREFIX' is not searched when the
  159.      `-b' option is used, or when the compiler is built as a cross
  160.      compiler.
  161. `MD_STARTFILE_PREFIX_1'
  162.      If defined, this macro supplies yet another prefix to try after the
  163.      standard prefixes.  It is not searched when the `-b' option is
  164.      used, or when the compiler is built as a cross compiler.
  165. `INIT_ENVIRONMENT'
  166.      Define this macro as a C string constant if you with to set
  167.      environment variables for programs called by the driver, such as
  168.      the assembler and loader.  The driver passes the value of this
  169.      macro to `putenv' to initialize the necessary environment
  170.      variables.
  171. `LOCAL_INCLUDE_DIR'
  172.      Define this macro as a C string constant if you wish to override
  173.      the standard choice of `/usr/local/include' as the default prefix
  174.      to try when searching for local header files.  `LOCAL_INCLUDE_DIR'
  175.      comes before `SYSTEM_INCLUDE_DIR' in the search order.
  176.      Cross compilers do not use this macro and do not search either
  177.      `/usr/local/include' or its replacement.
  178. `SYSTEM_INCLUDE_DIR'
  179.      Define this macro as a C string constant if you wish to specify a
  180.      system-specific directory to search for header files before the
  181.      standard directory.  `SYSTEM_INCLUDE_DIR' comes before
  182.      `STANDARD_INCLUDE_DIR' in the search order.
  183.      Cross compilers do not use this macro and do not search the
  184.      directory specified.
  185. `STANDARD_INCLUDE_DIR'
  186.      Define this macro as a C string constant if you wish to override
  187.      the standard choice of `/usr/include' as the default prefix to try
  188.      when searching for header files.
  189.      Cross compilers do not use this macro and do not search either
  190.      `/usr/include' or its replacement.
  191. `INCLUDE_DEFAULTS'
  192.      Define this macro if you wish to override the entire default
  193.      search path for include files.  The default search path includes
  194.      `GCC_INCLUDE_DIR', `LOCAL_INCLUDE_DIR', `SYSTEM_INCLUDE_DIR',
  195.      `GPLUSPLUS_INCLUDE_DIR', and `STANDARD_INCLUDE_DIR'.  In addition,
  196.      `GPLUSPLUS_INCLUDE_DIR' and `GCC_INCLUDE_DIR' are defined
  197.      automatically by `Makefile', and specify private search areas for
  198.      GCC.  The directory `GPLUSPLUS_INCLUDE_DIR' is used only for C++
  199.      programs.
  200.      The definition should be an initializer for an array of structures.
  201.      Each array element should have two elements: the directory name (a
  202.      string constant) and a flag for C++-only directories.  Mark the
  203.      end of the array with a null element.  For example, here is the
  204.      definition used for VMS:
  205.           #define INCLUDE_DEFAULTS \
  206.           {                                       \
  207.             { "GNU_GXX_INCLUDE:", 1},             \
  208.             { "GNU_CC_INCLUDE:", 0},              \
  209.             { "SYS$SYSROOT:[SYSLIB.]", 0},        \
  210.             { ".", 0},                            \
  211.             { 0, 0}                               \
  212.           }
  213.    Here is the order of prefixes tried for exec files:
  214.   1. Any prefixes specified by the user with `-B'.
  215.   2. The environment variable `GCC_EXEC_PREFIX', if any.
  216.   3. The directories specified by the environment variable
  217.      `COMPILER_PATH'.
  218.   4. The macro `STANDARD_EXEC_PREFIX'.
  219.   5. `/usr/lib/gcc/'.
  220.   6. The macro `MD_EXEC_PREFIX', if any.
  221.    Here is the order of prefixes tried for startfiles:
  222.   1. Any prefixes specified by the user with `-B'.
  223.   2. The environment variable `GCC_EXEC_PREFIX', if any.
  224.   3. The directories specified by the environment variable
  225.      `LIBRARY_PATH' (native only, cross compilers do not use this).
  226.   4. The macro `STANDARD_EXEC_PREFIX'.
  227.   5. `/usr/lib/gcc/'.
  228.   6. The macro `MD_EXEC_PREFIX', if any.
  229.   7. The macro `MD_STARTFILE_PREFIX', if any.
  230.   8. The macro `STANDARD_STARTFILE_PREFIX'.
  231.   9. `/lib/'.
  232.  10. `/usr/lib/'.
  233. File: gcc.info,  Node: Run-time Target,  Next: Storage Layout,  Prev: Driver,  Up: Target Macros
  234. Run-time Target Specification
  235. =============================
  236.    Here are run-time target specifications.
  237. `CPP_PREDEFINES'
  238.      Define this to be a string constant containing `-D' options to
  239.      define the predefined macros that identify this machine and system.
  240.      These macros will be predefined unless the `-ansi' option is
  241.      specified.
  242.      In addition, a parallel set of macros are predefined, whose names
  243.      are made by appending `__' at the beginning and at the end.  These
  244.      `__' macros are permitted by the ANSI standard, so they are
  245.      predefined regardless of whether `-ansi' is specified.
  246.      For example, on the Sun, one can use the following value:
  247.           "-Dmc68000 -Dsun -Dunix"
  248.      The result is to define the macros `__mc68000__', `__sun__' and
  249.      `__unix__' unconditionally, and the macros `mc68000', `sun' and
  250.      `unix' provided `-ansi' is not specified.
  251. `extern int target_flags;'
  252.      This declaration should be present.
  253. `TARGET_...'
  254.      This series of macros is to allow compiler command arguments to
  255.      enable or disable the use of optional features of the target
  256.      machine.  For example, one machine description serves both the
  257.      68000 and the 68020; a command argument tells the compiler whether
  258.      it should use 68020-only instructions or not.  This command
  259.      argument works by means of a macro `TARGET_68020' that tests a bit
  260.      in `target_flags'.
  261.      Define a macro `TARGET_FEATURENAME' for each such option.  Its
  262.      definition should test a bit in `target_flags'; for example:
  263.           #define TARGET_68020 (target_flags & 1)
  264.      One place where these macros are used is in the
  265.      condition-expressions of instruction patterns.  Note how
  266.      `TARGET_68020' appears frequently in the 68000 machine description
  267.      file, `m68k.md'.  Another place they are used is in the
  268.      definitions of the other macros in the `MACHINE.h' file.
  269. `TARGET_SWITCHES'
  270.      This macro defines names of command options to set and clear bits
  271.      in `target_flags'.  Its definition is an initializer with a
  272.      subgrouping for each command option.
  273.      Each subgrouping contains a string constant, that defines the
  274.      option name, and a number, which contains the bits to set in
  275.      `target_flags'.  A negative number says to clear bits instead; the
  276.      negative of the number is which bits to clear.  The actual option
  277.      name is made by appending `-m' to the specified name.
  278.      One of the subgroupings should have a null string.  The number in
  279.      this grouping is the default value for `target_flags'.  Any target
  280.      options act starting with that value.
  281.      Here is an example which defines `-m68000' and `-m68020' with
  282.      opposite meanings, and picks the latter as the default:
  283.           #define TARGET_SWITCHES \
  284.             { { "68020", 1},      \
  285.               { "68000", -1},     \
  286.               { "", 1}}
  287. `TARGET_OPTIONS'
  288.      This macro is similar to `TARGET_SWITCHES' but defines names of
  289.      command options that have values.  Its definition is an
  290.      initializer with a subgrouping for each command option.
  291.      Each subgrouping contains a string constant, that defines the
  292.      fixed part of the option name, and the address of a variable.  The
  293.      variable, type `char *', is set to the variable part of the given
  294.      option if the fixed part matches.  The actual option name is made
  295.      by appending `-m' to the specified name.
  296.      Here is an example which defines `-mshort-data-NUMBER'.  If the
  297.      given option is `-mshort-data-512', the variable `m88k_short_data'
  298.      will be set to the string `"512"'.
  299.           extern char *m88k_short_data;
  300.           #define TARGET_OPTIONS \
  301.            { { "short-data-", &m88k_short_data } }
  302. `TARGET_VERSION'
  303.      This macro is a C statement to print on `stderr' a string
  304.      describing the particular machine description choice.  Every
  305.      machine description should define `TARGET_VERSION'.  For example:
  306.           #ifdef MOTOROLA
  307.           #define TARGET_VERSION \
  308.             fprintf (stderr, " (68k, Motorola syntax)");
  309.           #else
  310.           #define TARGET_VERSION \
  311.             fprintf (stderr, " (68k, MIT syntax)");
  312.           #endif
  313. `OVERRIDE_OPTIONS'
  314.      Sometimes certain combinations of command options do not make
  315.      sense on a particular target machine.  You can define a macro
  316.      `OVERRIDE_OPTIONS' to take account of this.  This macro, if
  317.      defined, is executed once just after all the command options have
  318.      been parsed.
  319.      Don't use this macro to turn on various extra optimizations for
  320.      `-O'.  That is what `OPTIMIZATION_OPTIONS' is for.
  321. `OPTIMIZATION_OPTIONS (LEVEL)'
  322.      Some machines may desire to change what optimizations are
  323.      performed for various optimization levels.   This macro, if
  324.      defined, is executed once just after the optimization level is
  325.      determined and before the remainder of the command options have
  326.      been parsed.  Values set in this macro are used as the default
  327.      values for the other command line options.
  328.      LEVEL is the optimization level specified; 2 if `-O2' is
  329.      specified, 1 if `-O' is specified, and 0 if neither is specified.
  330.      You should not use this macro to change options that are not
  331.      machine-specific.  These should uniformly selected by the same
  332.      optimization level on all supported machines.  Use this macro to
  333.      enable machbine-specific optimizations.
  334.      *Do not examine `write_symbols' in this macro!* The debugging
  335.      options are not supposed to alter the generated code.
  336. `CAN_DEBUG_WITHOUT_FP'
  337.      Define this macro if debugging can be performed even without a
  338.      frame pointer.  If this macro is defined, GNU CC will turn on the
  339.      `-fomit-frame-pointer' option whenever `-O' is specified.
  340. File: gcc.info,  Node: Storage Layout,  Next: Type Layout,  Prev: Run-time Target,  Up: Target Macros
  341. Storage Layout
  342. ==============
  343.    Note that the definitions of the macros in this table which are
  344. sizes or alignments measured in bits do not need to be constant.  They
  345. can be C expressions that refer to static variables, such as the
  346. `target_flags'.  *Note Run-time Target::.
  347. `BITS_BIG_ENDIAN'
  348.      Define this macro to have the value 1 if the most significant bit
  349.      in a byte has the lowest number; otherwise define it to have the
  350.      value zero.  This means that bit-field instructions count from the
  351.      most significant bit.  If the machine has no bit-field
  352.      instructions, then this must still be defined, but it doesn't
  353.      matter which value it is defined to.  This macro need not be a
  354.      constant.
  355.      This macro does not affect the way structure fields are packed into
  356.      bytes or words; that is controlled by `BYTES_BIG_ENDIAN'.
  357. `BYTES_BIG_ENDIAN'
  358.      Define this macro to have the value 1 if the most significant byte
  359.      in a word has the lowest number.  This macro need not be a
  360.      constant.
  361. `WORDS_BIG_ENDIAN'
  362.      Define this macro to have the value 1 if, in a multiword object,
  363.      the most significant word has the lowest number.  This applies to
  364.      both memory locations and registers; GNU CC fundamentally assumes
  365.      that the order of words in memory is the same as the order in
  366.      registers.  This macro need not be a constant.
  367. `LIBGCC2_WORDS_BIG_ENDIAN'
  368.      Define this macro if WORDS_BIG_ENDIAN is not constant.  This must
  369.      be a constant value with the same meaning as WORDS_BIG_ENDIAN,
  370.      which will be used only when compiling libgcc2.c.  Typically the
  371.      value will be set based on preprocessor defines.
  372. `FLOAT_WORDS_BIG_ENDIAN'
  373.      Define this macro to have the value 1 if `DFmode', `XFmode' or
  374.      `TFmode' floating point numbers are stored in memory with the word
  375.      containing the sign bit at the lowest address; otherwise define it
  376.      to have the value 0.  This macro need not be a constant.
  377.      You need not define this macro if the ordering is the same as for
  378.      multi-word integers.
  379. `BITS_PER_UNIT'
  380.      Define this macro to be the number of bits in an addressable
  381.      storage unit (byte); normally 8.
  382. `BITS_PER_WORD'
  383.      Number of bits in a word; normally 32.
  384. `MAX_BITS_PER_WORD'
  385.      Maximum number of bits in a word.  If this is undefined, the
  386.      default is `BITS_PER_WORD'.  Otherwise, it is the constant value
  387.      that is the largest value that `BITS_PER_WORD' can have at
  388.      run-time.
  389. `UNITS_PER_WORD'
  390.      Number of storage units in a word; normally 4.
  391. `MIN_UNITS_PER_WORD'
  392.      Minimum number of units in a word.  If this is undefined, the
  393.      default is `UNITS_PER_WORD'.  Otherwise, it is the constant value
  394.      that is the smallest value that `UNITS_PER_WORD' can have at
  395.      run-time.
  396. `POINTER_SIZE'
  397.      Width of a pointer, in bits.  You must specify a value no wider
  398.      than the width of `Pmode'.  If it is not equal to the width of
  399.      `Pmode', you must define `POINTERS_EXTEND_UNSIGNED'.
  400. `POINTERS_EXTEND_UNSIGNED'
  401.      A C expression whose value is nonzero if pointers that need to be
  402.      extended from being `POINTER_SIZE' bits wide to `Pmode' are
  403.      sign-extended and zero if they are zero-extended.
  404.      You need not define this macro if the `POINTER_SIZE' is equal to
  405.      the width of `Pmode'.
  406. `PROMOTE_MODE (M, UNSIGNEDP, TYPE)'
  407.      A macro to update M and UNSIGNEDP when an object whose type is
  408.      TYPE and which has the specified mode and signedness is to be
  409.      stored in a register.  This macro is only called when TYPE is a
  410.      scalar type.
  411.      On most RISC machines, which only have operations that operate on
  412.      a full register, define this macro to set M to `word_mode' if M is
  413.      an integer mode narrower than `BITS_PER_WORD'.  In most cases,
  414.      only integer modes should be widened because wider-precision
  415.      floating-point operations are usually more expensive than their
  416.      narrower counterparts.
  417.      For most machines, the macro definition does not change UNSIGNEDP.
  418.      However, some machines, have instructions that preferentially
  419.      handle either signed or unsigned quantities of certain modes.  For
  420.      example, on the DEC Alpha, 32-bit loads from memory and 32-bit add
  421.      instructions sign-extend the result to 64 bits.  On such machines,
  422.      set UNSIGNEDP according to which kind of extension is more
  423.      efficient.
  424.      Do not define this macro if it would never modify M.
  425. `PROMOTE_FUNCTION_ARGS'
  426.      Define this macro if the promotion described by `PROMOTE_MODE'
  427.      should also be done for outgoing function arguments.
  428. `PROMOTE_FUNCTION_RETURN'
  429.      Define this macro if the promotion described by `PROMOTE_MODE'
  430.      should also be done for the return value of functions.
  431.      If this macro is defined, `FUNCTION_VALUE' must perform the same
  432.      promotions done by `PROMOTE_MODE'.
  433. `PROMOTE_FOR_CALL_ONLY'
  434.      Define this macro if the promotion described by `PROMOTE_MODE'
  435.      should *only* be performed for outgoing function arguments or
  436.      function return values, as specified by `PROMOTE_FUNCTION_ARGS'
  437.      and `PROMOTE_FUNCTION_RETURN', respectively.
  438. `PARM_BOUNDARY'
  439.      Normal alignment required for function parameters on the stack, in
  440.      bits.  All stack parameters receive at least this much alignment
  441.      regardless of data type.  On most machines, this is the same as the
  442.      size of an integer.
  443. `STACK_BOUNDARY'
  444.      Define this macro if you wish to preserve a certain alignment for
  445.      the stack pointer.  The definition is a C expression for the
  446.      desired alignment (measured in bits).
  447.      If `PUSH_ROUNDING' is not defined, the stack will always be aligned
  448.      to the specified boundary.  If `PUSH_ROUNDING' is defined and
  449.      specifies a less strict alignment than `STACK_BOUNDARY', the stack
  450.      may be momentarily unaligned while pushing arguments.
  451. `FUNCTION_BOUNDARY'
  452.      Alignment required for a function entry point, in bits.
  453. `BIGGEST_ALIGNMENT'
  454.      Biggest alignment that any data type can require on this machine,
  455.      in bits.
  456. `BIGGEST_FIELD_ALIGNMENT'
  457.      Biggest alignment that any structure field can require on this
  458.      machine, in bits.  If defined, this overrides `BIGGEST_ALIGNMENT'
  459.      for structure fields only.
  460. `MAX_OFILE_ALIGNMENT'
  461.      Biggest alignment supported by the object file format of this
  462.      machine.  Use this macro to limit the alignment which can be
  463.      specified using the `__attribute__ ((aligned (N)))' construct.  If
  464.      not defined, the default value is `BIGGEST_ALIGNMENT'.
  465. `DATA_ALIGNMENT (TYPE, BASIC-ALIGN)'
  466.      If defined, a C expression to compute the alignment for a static
  467.      variable.  TYPE is the data type, and BASIC-ALIGN is the alignment
  468.      that the object would ordinarily have.  The value of this macro is
  469.      used instead of that alignment to align the object.
  470.      If this macro is not defined, then BASIC-ALIGN is used.
  471.      One use of this macro is to increase alignment of medium-size data
  472.      to make it all fit in fewer cache lines.  Another is to cause
  473.      character arrays to be word-aligned so that `strcpy' calls that
  474.      copy constants to character arrays can be done inline.
  475. `CONSTANT_ALIGNMENT (CONSTANT, BASIC-ALIGN)'
  476.      If defined, a C expression to compute the alignment given to a
  477.      constant that is being placed in memory.  CONSTANT is the constant
  478.      and BASIC-ALIGN is the alignment that the object would ordinarily
  479.      have.  The value of this macro is used instead of that alignment to
  480.      align the object.
  481.      If this macro is not defined, then BASIC-ALIGN is used.
  482.      The typical use of this macro is to increase alignment for string
  483.      constants to be word aligned so that `strcpy' calls that copy
  484.      constants can be done inline.
  485. `EMPTY_FIELD_BOUNDARY'
  486.      Alignment in bits to be given to a structure bit field that
  487.      follows an empty field such as `int : 0;'.
  488.      Note that `PCC_BITFIELD_TYPE_MATTERS' also affects the alignment
  489.      that results from an empty field.
  490. `STRUCTURE_SIZE_BOUNDARY'
  491.      Number of bits which any structure or union's size must be a
  492.      multiple of.  Each structure or union's size is rounded up to a
  493.      multiple of this.
  494.      If you do not define this macro, the default is the same as
  495.      `BITS_PER_UNIT'.
  496. `STRICT_ALIGNMENT'
  497.      Define this macro to be the value 1 if instructions will fail to
  498.      work if given data not on the nominal alignment.  If instructions
  499.      will merely go slower in that case, define this macro as 0.
  500. `PCC_BITFIELD_TYPE_MATTERS'
  501.      Define this if you wish to imitate the way many other C compilers
  502.      handle alignment of bitfields and the structures that contain them.
  503.      The behavior is that the type written for a bitfield (`int',
  504.      `short', or other integer type) imposes an alignment for the
  505.      entire structure, as if the structure really did contain an
  506.      ordinary field of that type.  In addition, the bitfield is placed
  507.      within the structure so that it would fit within such a field, not
  508.      crossing a boundary for it.
  509.      Thus, on most machines, a bitfield whose type is written as `int'
  510.      would not cross a four-byte boundary, and would force four-byte
  511.      alignment for the whole structure.  (The alignment used may not be
  512.      four bytes; it is controlled by the other alignment parameters.)
  513.      If the macro is defined, its definition should be a C expression;
  514.      a nonzero value for the expression enables this behavior.
  515.      Note that if this macro is not defined, or its value is zero, some
  516.      bitfields may cross more than one alignment boundary.  The
  517.      compiler can support such references if there are `insv', `extv',
  518.      and `extzv' insns that can directly reference memory.
  519.      The other known way of making bitfields work is to define
  520.      `STRUCTURE_SIZE_BOUNDARY' as large as `BIGGEST_ALIGNMENT'.  Then
  521.      every structure can be accessed with fullwords.
  522.      Unless the machine has bitfield instructions or you define
  523.      `STRUCTURE_SIZE_BOUNDARY' that way, you must define
  524.      `PCC_BITFIELD_TYPE_MATTERS' to have a nonzero value.
  525.      If your aim is to make GNU CC use the same conventions for laying
  526.      out bitfields as are used by another compiler, here is how to
  527.      investigate what the other compiler does.  Compile and run this
  528.      program:
  529.           struct foo1
  530.           {
  531.             char x;
  532.             char :0;
  533.             char y;
  534.           };
  535.           
  536.           struct foo2
  537.           {
  538.             char x;
  539.             int :0;
  540.             char y;
  541.           };
  542.           
  543.           main ()
  544.           {
  545.             printf ("Size of foo1 is %d\n",
  546.                     sizeof (struct foo1));
  547.             printf ("Size of foo2 is %d\n",
  548.                     sizeof (struct foo2));
  549.             exit (0);
  550.           }
  551.      If this prints 2 and 5, then the compiler's behavior is what you
  552.      would get from `PCC_BITFIELD_TYPE_MATTERS'.
  553. `BITFIELD_NBYTES_LIMITED'
  554.      Like PCC_BITFIELD_TYPE_MATTERS except that its effect is limited to
  555.      aligning a bitfield within the structure.
  556. `ROUND_TYPE_SIZE (STRUCT, SIZE, ALIGN)'
  557.      Define this macro as an expression for the overall size of a
  558.      structure (given by STRUCT as a tree node) when the size computed
  559.      from the fields is SIZE and the alignment is ALIGN.
  560.      The default is to round SIZE up to a multiple of ALIGN.
  561. `ROUND_TYPE_ALIGN (STRUCT, COMPUTED, SPECIFIED)'
  562.      Define this macro as an expression for the alignment of a structure
  563.      (given by STRUCT as a tree node) if the alignment computed in the
  564.      usual way is COMPUTED and the alignment explicitly specified was
  565.      SPECIFIED.
  566.      The default is to use SPECIFIED if it is larger; otherwise, use
  567.      the smaller of COMPUTED and `BIGGEST_ALIGNMENT'
  568. `MAX_FIXED_MODE_SIZE'
  569.      An integer expression for the size in bits of the largest integer
  570.      machine mode that should actually be used.  All integer machine
  571.      modes of this size or smaller can be used for structures and
  572.      unions with the appropriate sizes.  If this macro is undefined,
  573.      `GET_MODE_BITSIZE (DImode)' is assumed.
  574. `CHECK_FLOAT_VALUE (MODE, VALUE, OVERFLOW)'
  575.      A C statement to validate the value VALUE (of type `double') for
  576.      mode MODE.  This means that you check whether VALUE fits within
  577.      the possible range of values for mode MODE on this target machine.
  578.      The mode MODE is always a mode of class `MODE_FLOAT'.  OVERFLOW
  579.      is nonzero if the value is already known to be out of range.
  580.      If VALUE is not valid or if OVERFLOW is nonzero, you should set
  581.      OVERFLOW to 1 and then assign some valid value to VALUE.  Allowing
  582.      an invalid value to go through the compiler can produce incorrect
  583.      assembler code which may even cause Unix assemblers to crash.
  584.      This macro need not be defined if there is no work for it to do.
  585. `TARGET_FLOAT_FORMAT'
  586.      A code distinguishing the floating point format of the target
  587.      machine.  There are three defined values:
  588.     `IEEE_FLOAT_FORMAT'
  589.           This code indicates IEEE floating point.  It is the default;
  590.           there is no need to define this macro when the format is IEEE.
  591.     `VAX_FLOAT_FORMAT'
  592.           This code indicates the peculiar format used on the Vax.
  593.     `UNKNOWN_FLOAT_FORMAT'
  594.           This code indicates any other format.
  595.      The value of this macro is compared with `HOST_FLOAT_FORMAT'
  596.      (*note Config::.) to determine whether the target machine has the
  597.      same format as the host machine.  If any other formats are
  598.      actually in use on supported machines, new codes should be defined
  599.      for them.
  600.      The ordering of the component words of floating point values
  601.      stored in memory is controlled by `FLOAT_WORDS_BIG_ENDIAN' for the
  602.      target machine and `HOST_FLOAT_WORDS_BIG_ENDIAN' for the host.
  603. File: gcc.info,  Node: Type Layout,  Next: Registers,  Prev: Storage Layout,  Up: Target Macros
  604. Layout of Source Language Data Types
  605. ====================================
  606.    These macros define the sizes and other characteristics of the
  607. standard basic data types used in programs being compiled.  Unlike the
  608. macros in the previous section, these apply to specific features of C
  609. and related languages, rather than to fundamental aspects of storage
  610. layout.
  611. `INT_TYPE_SIZE'
  612.      A C expression for the size in bits of the type `int' on the
  613.      target machine.  If you don't define this, the default is one word.
  614. `MAX_INT_TYPE_SIZE'
  615.      Maximum number for the size in bits of the type `int' on the target
  616.      machine.  If this is undefined, the default is `INT_TYPE_SIZE'.
  617.      Otherwise, it is the constant value that is the largest value that
  618.      `INT_TYPE_SIZE' can have at run-time.  This is used in `cpp'.
  619. `SHORT_TYPE_SIZE'
  620.      A C expression for the size in bits of the type `short' on the
  621.      target machine.  If you don't define this, the default is half a
  622.      word.  (If this would be less than one storage unit, it is rounded
  623.      up to one unit.)
  624. `LONG_TYPE_SIZE'
  625.      A C expression for the size in bits of the type `long' on the
  626.      target machine.  If you don't define this, the default is one word.
  627. `MAX_LONG_TYPE_SIZE'
  628.      Maximum number for the size in bits of the type `long' on the
  629.      target machine.  If this is undefined, the default is
  630.      `LONG_TYPE_SIZE'.  Otherwise, it is the constant value that is the
  631.      largest value that `LONG_TYPE_SIZE' can have at run-time.  This is
  632.      used in `cpp'.
  633. `LONG_LONG_TYPE_SIZE'
  634.      A C expression for the size in bits of the type `long long' on the
  635.      target machine.  If you don't define this, the default is two
  636.      words.  If you want to support GNU Ada on your machine, the value
  637.      of macro must be at least 64.
  638. `CHAR_TYPE_SIZE'
  639.      A C expression for the size in bits of the type `char' on the
  640.      target machine.  If you don't define this, the default is one
  641.      quarter of a word.  (If this would be less than one storage unit,
  642.      it is rounded up to one unit.)
  643. `MAX_CHAR_TYPE_SIZE'
  644.      Maximum number for the size in bits of the type `char' on the
  645.      target machine.  If this is undefined, the default is
  646.      `CHAR_TYPE_SIZE'.  Otherwise, it is the constant value that is the
  647.      largest value that `CHAR_TYPE_SIZE' can have at run-time.  This is
  648.      used in `cpp'.
  649. `FLOAT_TYPE_SIZE'
  650.      A C expression for the size in bits of the type `float' on the
  651.      target machine.  If you don't define this, the default is one word.
  652. `DOUBLE_TYPE_SIZE'
  653.      A C expression for the size in bits of the type `double' on the
  654.      target machine.  If you don't define this, the default is two
  655.      words.
  656. `LONG_DOUBLE_TYPE_SIZE'
  657.      A C expression for the size in bits of the type `long double' on
  658.      the target machine.  If you don't define this, the default is two
  659.      words.
  660. `DEFAULT_SIGNED_CHAR'
  661.      An expression whose value is 1 or 0, according to whether the type
  662.      `char' should be signed or unsigned by default.  The user can
  663.      always override this default with the options `-fsigned-char' and
  664.      `-funsigned-char'.
  665. `DEFAULT_SHORT_ENUMS'
  666.      A C expression to determine whether to give an `enum' type only as
  667.      many bytes as it takes to represent the range of possible values
  668.      of that type.  A nonzero value means to do that; a zero value
  669.      means all `enum' types should be allocated like `int'.
  670.      If you don't define the macro, the default is 0.
  671. `SIZE_TYPE'
  672.      A C expression for a string describing the name of the data type
  673.      to use for size values.  The typedef name `size_t' is defined
  674.      using the contents of the string.
  675.      The string can contain more than one keyword.  If so, separate
  676.      them with spaces, and write first any length keyword, then
  677.      `unsigned' if appropriate, and finally `int'.  The string must
  678.      exactly match one of the data type names defined in the function
  679.      `init_decl_processing' in the file `c-decl.c'.  You may not omit
  680.      `int' or change the order--that would cause the compiler to crash
  681.      on startup.
  682.      If you don't define this macro, the default is `"long unsigned
  683.      int"'.
  684. `PTRDIFF_TYPE'
  685.      A C expression for a string describing the name of the data type
  686.      to use for the result of subtracting two pointers.  The typedef
  687.      name `ptrdiff_t' is defined using the contents of the string.  See
  688.      `SIZE_TYPE' above for more information.
  689.      If you don't define this macro, the default is `"long int"'.
  690. `WCHAR_TYPE'
  691.      A C expression for a string describing the name of the data type
  692.      to use for wide characters.  The typedef name `wchar_t' is defined
  693.      using the contents of the string.  See `SIZE_TYPE' above for more
  694.      information.
  695.      If you don't define this macro, the default is `"int"'.
  696. `WCHAR_TYPE_SIZE'
  697.      A C expression for the size in bits of the data type for wide
  698.      characters.  This is used in `cpp', which cannot make use of
  699.      `WCHAR_TYPE'.
  700. `MAX_WCHAR_TYPE_SIZE'
  701.      Maximum number for the size in bits of the data type for wide
  702.      characters.  If this is undefined, the default is
  703.      `WCHAR_TYPE_SIZE'.  Otherwise, it is the constant value that is the
  704.      largest value that `WCHAR_TYPE_SIZE' can have at run-time.  This is
  705.      used in `cpp'.
  706. `OBJC_INT_SELECTORS'
  707.      Define this macro if the type of Objective C selectors should be
  708.      `int'.
  709.      If this macro is not defined, then selectors should have the type
  710.      `struct objc_selector *'.
  711. `OBJC_SELECTORS_WITHOUT_LABELS'
  712.      Define this macro if the compiler can group all the selectors
  713.      together into a vector and use just one label at the beginning of
  714.      the vector.  Otherwise, the compiler must give each selector its
  715.      own assembler label.
  716.      On certain machines, it is important to have a separate label for
  717.      each selector because this enables the linker to eliminate
  718.      duplicate selectors.
  719. `TARGET_BELL'
  720.      A C constant expression for the integer value for escape sequence
  721.      `\a'.
  722. `TARGET_BS'
  723. `TARGET_TAB'
  724. `TARGET_NEWLINE'
  725.      C constant expressions for the integer values for escape sequences
  726.      `\b', `\t' and `\n'.
  727. `TARGET_VT'
  728. `TARGET_FF'
  729. `TARGET_CR'
  730.      C constant expressions for the integer values for escape sequences
  731.      `\v', `\f' and `\r'.
  732. File: gcc.info,  Node: Registers,  Next: Register Classes,  Prev: Type Layout,  Up: Target Macros
  733. Register Usage
  734. ==============
  735.    This section explains how to describe what registers the target
  736. machine has, and how (in general) they can be used.
  737.    The description of which registers a specific instruction can use is
  738. done with register classes; see *Note Register Classes::.  For
  739. information on using registers to access a stack frame, see *Note Frame
  740. Registers::.  For passing values in registers, see *Note Register
  741. Arguments::.  For returning values in registers, see *Note Scalar
  742. Return::.
  743. * Menu:
  744. * Register Basics::        Number and kinds of registers.
  745. * Allocation Order::        Order in which registers are allocated.
  746. * Values in Registers::        What kinds of values each reg can hold.
  747. * Leaf Functions::        Renumbering registers for leaf functions.
  748. * Stack Registers::        Handling a register stack such as 80387.
  749. * Obsolete Register Macros::    Macros formerly used for the 80387.
  750. File: gcc.info,  Node: Register Basics,  Next: Allocation Order,  Up: Registers
  751. Basic Characteristics of Registers
  752. ----------------------------------
  753.    Registers have various characteristics.
  754. `FIRST_PSEUDO_REGISTER'
  755.      Number of hardware registers known to the compiler.  They receive
  756.      numbers 0 through `FIRST_PSEUDO_REGISTER-1'; thus, the first
  757.      pseudo register's number really is assigned the number
  758.      `FIRST_PSEUDO_REGISTER'.
  759. `FIXED_REGISTERS'
  760.      An initializer that says which registers are used for fixed
  761.      purposes all throughout the compiled code and are therefore not
  762.      available for general allocation.  These would include the stack
  763.      pointer, the frame pointer (except on machines where that can be
  764.      used as a general register when no frame pointer is needed), the
  765.      program counter on machines where that is considered one of the
  766.      addressable registers, and any other numbered register with a
  767.      standard use.
  768.      This information is expressed as a sequence of numbers, separated
  769.      by commas and surrounded by braces.  The Nth number is 1 if
  770.      register N is fixed, 0 otherwise.
  771.      The table initialized from this macro, and the table initialized by
  772.      the following one, may be overridden at run time either
  773.      automatically, by the actions of the macro
  774.      `CONDITIONAL_REGISTER_USAGE', or by the user with the command
  775.      options `-ffixed-REG', `-fcall-used-REG' and `-fcall-saved-REG'.
  776. `CALL_USED_REGISTERS'
  777.      Like `FIXED_REGISTERS' but has 1 for each register that is
  778.      clobbered (in general) by function calls as well as for fixed
  779.      registers.  This macro therefore identifies the registers that are
  780.      not available for general allocation of values that must live
  781.      across function calls.
  782.      If a register has 0 in `CALL_USED_REGISTERS', the compiler
  783.      automatically saves it on function entry and restores it on
  784.      function exit, if the register is used within the function.
  785. `CONDITIONAL_REGISTER_USAGE'
  786.      Zero or more C statements that may conditionally modify two
  787.      variables `fixed_regs' and `call_used_regs' (both of type `char
  788.      []') after they have been initialized from the two preceding
  789.      macros.
  790.      This is necessary in case the fixed or call-clobbered registers
  791.      depend on target flags.
  792.      You need not define this macro if it has no work to do.
  793.      If the usage of an entire class of registers depends on the target
  794.      flags, you may indicate this to GCC by using this macro to modify
  795.      `fixed_regs' and `call_used_regs' to 1 for each of the registers
  796.      in the classes which should not be used by GCC.  Also define the
  797.      macro `REG_CLASS_FROM_LETTER' to return `NO_REGS' if it is called
  798.      with a letter for a class that shouldn't be used.
  799.      (However, if this class is not included in `GENERAL_REGS' and all
  800.      of the insn patterns whose constraints permit this class are
  801.      controlled by target switches, then GCC will automatically avoid
  802.      using these registers when the target switches are opposed to
  803.      them.)
  804. `NON_SAVING_SETJMP'
  805.      If this macro is defined and has a nonzero value, it means that
  806.      `setjmp' and related functions fail to save the registers, or that
  807.      `longjmp' fails to restore them.  To compensate, the compiler
  808.      avoids putting variables in registers in functions that use
  809.      `setjmp'.
  810. `INCOMING_REGNO (OUT)'
  811.      Define this macro if the target machine has register windows.
  812.      This C expression returns the register number as seen by the
  813.      called function corresponding to the register number OUT as seen
  814.      by the calling function.  Return OUT if register number OUT is not
  815.      an outbound register.
  816. `OUTGOING_REGNO (IN)'
  817.      Define this macro if the target machine has register windows.
  818.      This C expression returns the register number as seen by the
  819.      calling function corresponding to the register number IN as seen
  820.      by the called function.  Return IN if register number IN is not an
  821.      inbound register.
  822. File: gcc.info,  Node: Allocation Order,  Next: Values in Registers,  Prev: Register Basics,  Up: Registers
  823. Order of Allocation of Registers
  824. --------------------------------
  825.    Registers are allocated in order.
  826. `REG_ALLOC_ORDER'
  827.      If defined, an initializer for a vector of integers, containing the
  828.      numbers of hard registers in the order in which GNU CC should
  829.      prefer to use them (from most preferred to least).
  830.      If this macro is not defined, registers are used lowest numbered
  831.      first (all else being equal).
  832.      One use of this macro is on machines where the highest numbered
  833.      registers must always be saved and the save-multiple-registers
  834.      instruction supports only sequences of consecutive registers.  On
  835.      such machines, define `REG_ALLOC_ORDER' to be an initializer that
  836.      lists the highest numbered allocatable register first.
  837. `ORDER_REGS_FOR_LOCAL_ALLOC'
  838.      A C statement (sans semicolon) to choose the order in which to
  839.      allocate hard registers for pseudo-registers local to a basic
  840.      block.
  841.      Store the desired register order in the array `reg_alloc_order'.
  842.      Element 0 should be the register to allocate first; element 1, the
  843.      next register; and so on.
  844.      The macro body should not assume anything about the contents of
  845.      `reg_alloc_order' before execution of the macro.
  846.      On most machines, it is not necessary to define this macro.
  847. File: gcc.info,  Node: Values in Registers,  Next: Leaf Functions,  Prev: Allocation Order,  Up: Registers
  848. How Values Fit in Registers
  849. ---------------------------
  850.    This section discusses the macros that describe which kinds of values
  851. (specifically, which machine modes) each register can hold, and how many
  852. consecutive registers are needed for a given mode.
  853. `HARD_REGNO_NREGS (REGNO, MODE)'
  854.      A C expression for the number of consecutive hard registers,
  855.      starting at register number REGNO, required to hold a value of mode
  856.      MODE.
  857.      On a machine where all registers are exactly one word, a suitable
  858.      definition of this macro is
  859.           #define HARD_REGNO_NREGS(REGNO, MODE)            \
  860.              ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1)  \
  861.               / UNITS_PER_WORD))
  862. `HARD_REGNO_MODE_OK (REGNO, MODE)'
  863.      A C expression that is nonzero if it is permissible to store a
  864.      value of mode MODE in hard register number REGNO (or in several
  865.      registers starting with that one).  For a machine where all
  866.      registers are equivalent, a suitable definition is
  867.           #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
  868.      It is not necessary for this macro to check for the numbers of
  869.      fixed registers, because the allocation mechanism considers them
  870.      to be always occupied.
  871.      On some machines, double-precision values must be kept in even/odd
  872.      register pairs.  The way to implement that is to define this macro
  873.      to reject odd register numbers for such modes.
  874.      The minimum requirement for a mode to be OK in a register is that
  875.      the `movMODE' instruction pattern support moves between the
  876.      register and any other hard register for which the mode is OK; and
  877.      that moving a value into the register and back out not alter it.
  878.      Since the same instruction used to move `SImode' will work for all
  879.      narrower integer modes, it is not necessary on any machine for
  880.      `HARD_REGNO_MODE_OK' to distinguish between these modes, provided
  881.      you define patterns `movhi', etc., to take advantage of this.  This
  882.      is useful because of the interaction between `HARD_REGNO_MODE_OK'
  883.      and `MODES_TIEABLE_P'; it is very desirable for all integer modes
  884.      to be tieable.
  885.      Many machines have special registers for floating point arithmetic.
  886.      Often people assume that floating point machine modes are allowed
  887.      only in floating point registers.  This is not true.  Any
  888.      registers that can hold integers can safely *hold* a floating
  889.      point machine mode, whether or not floating arithmetic can be done
  890.      on it in those registers.  Integer move instructions can be used
  891.      to move the values.
  892.      On some machines, though, the converse is true: fixed-point machine
  893.      modes may not go in floating registers.  This is true if the
  894.      floating registers normalize any value stored in them, because
  895.      storing a non-floating value there would garble it.  In this case,
  896.      `HARD_REGNO_MODE_OK' should reject fixed-point machine modes in
  897.      floating registers.  But if the floating registers do not
  898.      automatically normalize, if you can store any bit pattern in one
  899.      and retrieve it unchanged without a trap, then any machine mode
  900.      may go in a floating register, so you can define this macro to say
  901.      so.
  902.      The primary significance of special floating registers is rather
  903.      that they are the registers acceptable in floating point arithmetic
  904.      instructions.  However, this is of no concern to
  905.      `HARD_REGNO_MODE_OK'.  You handle it by writing the proper
  906.      constraints for those instructions.
  907.      On some machines, the floating registers are especially slow to
  908.      access, so that it is better to store a value in a stack frame
  909.      than in such a register if floating point arithmetic is not being
  910.      done.  As long as the floating registers are not in class
  911.      `GENERAL_REGS', they will not be used unless some pattern's
  912.      constraint asks for one.
  913. `MODES_TIEABLE_P (MODE1, MODE2)'
  914.      A C expression that is nonzero if it is desirable to choose
  915.      register allocation so as to avoid move instructions between a
  916.      value of mode MODE1 and a value of mode MODE2.
  917.      If `HARD_REGNO_MODE_OK (R, MODE1)' and `HARD_REGNO_MODE_OK (R,
  918.      MODE2)' are ever different for any R, then `MODES_TIEABLE_P (MODE1,
  919.      MODE2)' must be zero.
  920.